home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / awk210.arc / ASIA.AWK < prev    next >
Text File  |  1988-12-29  |  170b  |  5 lines

  1. $4 == "Asia" { pop = pop + $3; n = n + 1 }
  2. END          { print "Total population of the", n,
  3.                    "Asian countries is", pop, "million."
  4.              }
  5.